Skip to main content
Version: 1.0.2

Get Country Group

Get country group based on its name.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample Value: "visadps100040"

transactionType

Mandatory

String

Type of operation / transaction

Constant Value : "GET_COUNTRYGROUP"

customerId

Mandatory

String

Unique ID of the customer

Sample Value : "100000000006001"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value :"VISA_DPS"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value : "DEFAULT"

countryGroup

Mandatory

Object

groupName

Mandatory

String

Name of the country group

Sample Value : "Mathew Whitelist Group 001"


curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100040","transactionType":"GET_COUNTRYGROUP","customerId":"100000000006001","product":"DEFAULT","channel":"VISA_DPS","program":"DEFAULT","countryGroup":{"groupName":"Mathew Whitelist Group 001"}},"api":{"signature":"{{signature}}","apiKey":"{{Api-key}}","credential":"{{cred}}"}}}'

Body


{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100040",
"transactionType": "GET_COUNTRYGROUP",
"customerId": "100000000006001",
"product": "DEFAULT",
"channel": "VISA_DPS",
"program": "DEFAULT",
"countryGroup": {
"groupName": "Mathew Whitelist Group 001"
}
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response Id echoed from the request Id

Sample Value : "1"

result

Object

countryGroup

Object

id

String

Unique identifier of the country group

Sample Value : "673d99a236e456cc9c792c14"

groupName

String

Name of the country group

Sample Value : "Mathew Whitelist Group 001"

description

String

Description of the country group

Sample Value : "MA Whitelist Group"

countryCodes

Array

An array of country codes included in the group

Sample Value : "US"

active

Boolean

Indicates whether the country group is active

Sample Value : true

createdDate

String

Date and time when the country group was created

Sample Value : "2024-11-20T08:11:14.682Z"

updatedDate

String

Date and time when the country group was last updated

Sample Value : "2024-11-20T08:12:40.338Z"

isCreatedBridge

Boolean

Indicates whether the country group was validated via the bridge service

Sample Value : false

api

Object

type

String

Acknowledgement for type of operation requested for

Constant value: " GET_COUNTRYGROUP_ACK"

reference

String

Auto generated reference ID of this acknowledgment

Sample value: " REFvisadps100040"

dateCreated

Number

Unix timestamp of the response was created

Sample value: 1732090492

originalReference

String

Original reference ID taken from the request

Sample value: " visadps100040"


{
"id": "1",
"result": {
"countryGroup": {
"id": "673d99a236e456cc9c792c14",
"groupName": "Mathew Whitelist Group 001",
"description": "MA Whitelist Group",
"countryCodes": [
"NZ",
"US"
],
"active": true,
"createdDate": "2024-11-20T08:11:14.682Z",
"updatedDate": "2024-11-20T08:12:40.338Z",
"isCreatedBridge": false
},
"api": {
"type": "GET_COUNTRYGROUP_ACK",
"reference": "REFvisadps100040",
"dateCreated": 1732090492,
"originalReference": "visadps100040"
}
}
}